Namespacing everything to /UVa.
[and.git] / UVa / 10154 - Weights and measures / genInput.py
blob404544178edd80d9f3753dd0ab5049e37e2152d7
1 import random
3 for i in range(0, 5606):
4 j = random.randint(1, 10000)
5 print str(j) + " " + str(random.randint(j+1, 10001))